Skip to main content
GET
/
v1
/
axons
JavaScript
import Runloop from '@runloop/api-client';

const client = new Runloop({
  bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});

const axonListView = await client.axons.list();

console.log(axonListView.axons);
{
  "axons": [
    {
      "id": "<string>",
      "created_at_ms": 123,
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

axons
object[]
required

List of active axons.